home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000081_news@columbia.edu_ 26 Apr 2001 14:24:24 GMT.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  2. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  3. Newsgroups: comp.os.linux.networking,comp.protocols.kermit.misc
  4. Subject: Re: copying a file to a ftp-server
  5. Date: 26 Apr 2001 14:24:24 GMT
  6. Organization: Columbia University
  7. Lines: 41
  8. Message-ID: <9c9b2o$gej$1@newsmaster.cc.columbia.edu>
  9. References: <20010426.13080200@risa.athome>
  10. NNTP-Posting-Host: watsun.cc.columbia.edu
  11. X-Trace: newsmaster.cc.columbia.edu 988295064 16851 128.59.39.2 (26 Apr 2001 14:24:24 GMT)
  12. X-Complaints-To: postmaster@columbia.edu
  13. NNTP-Posting-Date: 26 Apr 2001 14:24:24 GMT
  14. Xref: newsmaster.cc.columbia.edu comp.os.linux.networking:329852 comp.protocols.kermit.misc:12367
  15.  
  16. In article <20010426.13080200@risa.athome>,  <christian.verbeek@gmd.de> wrote:
  17. : Dear newgroup,
  18. : how do i put a single file to a ftp server from the command line. With=20
  19. : the ftp program i always end up in interactive mode, but i want to do=20
  20. : this from within a script.
  21. : So i need something like: ftpcopy myfile ftp://myftpserver
  22. If you use the new Kermit FTP client:
  23.  
  24.   http://www.columbia.edu/kermit/ftpclient.html
  25.  
  26. you can do it like this:
  27.  
  28.   ftp -A kermit.columbia.edu -D kermit/incoming -bp debug.log
  29.  
  30. In this example:
  31.  
  32.   ftp is a symlink to the C-Kermit 7.1 binary
  33.   -A means "log in as user anonymous"
  34.   -D means CD to the given directory
  35.   -b means force binary mode
  36.   -p means PUT
  37.  
  38. You can also specify a real username and password:
  39.  
  40.   ftp -u christian.verbeek -P secret ...
  41.  
  42. And before anybody objects that cleartext passwords should never be used:
  43.  
  44.  1. Sometimes you have no choice.
  45.  
  46.  2. The Kermit FTP client supports several secure authentication
  47.     methods: Kerberos 4, Kerberos 5 GSSAPI, SRP, SSL/TLS.
  48.  
  49. Secure FTP servers are available.  To find out more, see:
  50.  
  51.   http://www.columbia.edu/kermit/ftpd.html
  52.  
  53. - Frank
  54.